List Destinations
Route
/v2/streaming/destinations
Description
List all streaming destinations configured for real-time data export. Destinations are HTTPS endpoints that receive streamed data from Cyberhaven.
Method
GET
Inputs
No input parameters required.
Output
| Field | Type | Description |
|---|---|---|
destinations | array[Destination] | Array of destination objects |
Destination Object Structure
| Field | Type | Description |
|---|---|---|
id | string | Unique destination identifier |
name | string | Destination name |
description | string | Destination description |
type | string | Destination type (always "https") |
format | string | Data format (json, json_lines) |
encoding | string | Encoding type (none, gzip) |
https_config | object | HTTPS configuration details |
created_at | string | Creation timestamp (ISO 8601) |
updated_at | string | Last update timestamp (ISO 8601) |
Rate Limit
- 60 requests per minute per API key
- 5 concurrent requests per endpoint
Example Response
{
"destinations": [
{
"id": "dest-123",
"name": "SIEM Integration",
"description": "Stream to Splunk SIEM",
"type": "https",
"format": "json_lines",
"encoding": "gzip",
"https_config": {
"uri": "https://splunk.company.com/services/collector/event"
},
"created_at": "2024-01-15T10:30:00Z",
"updated_at": "2024-01-15T10:30:00Z"
}
]
}